home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / cenvi2.arj / HELLO.CMM < prev    next >
Text File  |  1993-07-27  |  209b  |  6 lines

  1. // Hello.cmm: My first Cmm program
  2. Count = 1;  /* Count is how many Cmm programs I've written */
  3. printf("Hello world. This is my %dst Cmm program.\n",Count);
  4. printf("Press any key to quit...");
  5. getch();
  6.